home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Plotting / aa_Intel_Only / Gnuplot / GnuplotSource / DoubleObject.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  667 b   |  29 lines

  1. /*
  2.  *  Copyright (C) 1993  Robert Davis
  3.  *
  4.  *  This program is free software; you can redistribute it and/or
  5.  *  modify it under the terms of Version 2, or any later version, of 
  6.  *  the GNU General Public License as published by the Free Software 
  7.  *  Foundation.
  8.  */
  9.  
  10.  
  11. /* $Id: DoubleObject.h,v 1.1 1993/05/04 16:21:41 davis Exp $ */
  12.  
  13. #import "SubObject.h"
  14.  
  15. @interface DoubleObject:SubObject
  16. {
  17.     double    doubleValue;        /* A point on an axis    */
  18. }
  19.  
  20. - initFromString:(const char *)aString;        /* does nothing */
  21. - initFromDouble:(double)aDouble;
  22.  
  23. - setDoubleValue:(double)aDouble;
  24. - (double)doubleValue;
  25.  
  26. - setStringValue:(const char *)aString;        /* does nothing */
  27.  
  28. @end
  29.